home *** CD-ROM | disk | FTP | other *** search
- ///////////////////////////////////////////////////////////////////////////////
- //
- // Copyright 1997-98 Activision Studios, Strategy Group
- //
- // Battlezone II - Core System Configuration File
- //
-
- // Configure game file system
- ConfigureFileSystem()
- {
- // Setup base data
- ConfigureStream("base")
- {
- // Look in "addon" first
- AddDirRecurse("@rootdir\addon");
-
- // Add detail specific data
- AddStream("texturesize");
-
- // Look in "data" next
- AddPack("@rootdir\data.pak");
- AddDirRecurse("@rootdir\data");
- }
-
- // Make it active
- SetActiveStream("base");
- }
-